home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / mgraph / boolean.h next >
Text File  |  1994-03-22  |  205b  |  17 lines

  1. /*
  2. *    FILE:        boolean.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    March 15, 1994
  5. *
  6. *    Defines boolean type.
  7. */
  8.  
  9. # ifndef boolean_h
  10. # define boolean_h
  11.  
  12. # define    TRUE        1
  13. # define    FALSE        0
  14. typedef int    boolean;
  15.  
  16. # endif
  17.